home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / float / dpa_pow.a < prev    next >
Encoding:
Text File  |  1994-02-01  |  376 b   |  24 lines

  1.  
  2.         ;   DPOW.A
  3.         ;
  4.         ;   D0/D1 = pow(D0/D1, D2/D3)
  5.         ;        4(sp)  12(sp)
  6.         ;
  7.         ;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  8.  
  9.         section text,code
  10.  
  11.         xref    _MathIeeeDoubTransBase
  12.         xref    _LVOIEEEDPPow
  13.         xdef    _pow
  14.  
  15. _pow        movem.l D2-D3/A6,-(sp)
  16.         movem.l 4+12(sp),D0-D3
  17.         move.l    _MathIeeeDoubTransBase(A4),A6
  18.         jsr    _LVOIEEEDPPow(A6)
  19.         movem.l (sp)+,D2-D3/A6
  20.         rts
  21.  
  22.         END
  23.  
  24.